- /* sdmstdrf.cpp by K.Tsuru */
- // function ID = 315 DRADIX
- /*******************************************************************
- SDouble class
- It reforms to the standard form even if in the fixed point mode.
- 0.0000 0000 abcd efgh .... *DRADIX^e ---> 0.abcd efgh ... *DRADIX^E
- *******************************************************************/
- #ifndef SN_H
- #include "sn.h"
- #endif
- void SDouble::StdReform(int id){
- int shift = 1-(int)aTail;
- if(shift && Sign(id)){
- ShiftArray(shift); rdxExp += shift;
- }
- //the same processing as DoCutDown()
- if( 2u*(aHead+1) <= figure.size() ){
- figure.size( max(aHead+1, minArraySize), 1);
- }
- }
sdmstdrf.cpp : last modifiled at 2015/11/25 20:11:53(656 bytes)
created at 2017/10/07 10:21:14
The creation time of this html file is 2017/10/07 10:30:03 (Sat Oct 07 10:30:03 2017).